home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_VID / WINBM20.ZIP;1 / PCX.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-19  |  537 b   |  31 lines

  1. /*
  2. **    $id: ssvcid pcx.h 1.0 08/03/92 10:02 am$
  3. **        Support functions for reading in a PCX file and creating a DIB
  4. **    from it.
  5. **
  6. **    (C) 1991-3 Larry Widing
  7. */
  8. #ifndef    __PCXFILE_H__
  9. #define    __PCXFILE_H__    1
  10.  
  11. #if    defined(__cplusplus)
  12. extern "C" {
  13. #endif
  14.  
  15. extern HDIB ReadPcxFile(const char *filename);
  16.  
  17. #if    defined(__cplusplus)
  18. extern "C" {
  19. #endif
  20.  
  21. #endif    /* !defined(__PCXFILE_H__) */
  22. /*
  23. **    Modification History
  24. **    ====================
  25. **
  26. **    $lgb$
  27. ** 08/03/92     Larry Widing   Initial Version.
  28. **    $lge$
  29. */
  30.  
  31.